home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / bfd / libbfd-in.h < prev    next >
C/C++ Source or Header  |  1994-10-21  |  18KB  |  430 lines

  1. /* libbfd.h -- Declarations used by bfd library *implementation*.
  2.    (This include file is not for users of the library.)
  3.    Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  4.    Written by Cygnus Support.
  5.  
  6. ** NOTE: libbfd.h is a GENERATED file.  Don't change it; instead,
  7. ** change libbfd-in.h or the other BFD source files processed to
  8. ** generate this file.
  9.  
  10. This file is part of BFD, the Binary File Descriptor library.
  11.  
  12. This program is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 2 of the License, or
  15. (at your option) any later version.
  16.  
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. GNU General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with this program; if not, write to the Free Software
  24. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  25.  
  26. /* Align an address upward to a boundary, expressed as a number of bytes.
  27.    E.g. align to an 8-byte boundary with argument of 8.  */
  28. #define BFD_ALIGN(this, boundary) \
  29.   ((( (this) + ((boundary) -1)) & (~((boundary)-1))))
  30.  
  31. /* If you want to read and write large blocks, you might want to do it
  32.    in quanta of this amount */
  33. #define DEFAULT_BUFFERSIZE 8192
  34.  
  35. /* Set a tdata field.  Can't use the other macros for this, since they
  36.    do casts, and casting to the left of assignment isn't portable.  */
  37. #define set_tdata(bfd, v) ((bfd)->tdata.any = (PTR) (v))
  38.  
  39. /* tdata for an archive.  For an input archive, cache
  40.    needs to be free()'d.  For an output archive, symdefs do.  */
  41.  
  42. struct artdata {
  43.   file_ptr first_file_filepos;
  44.   /* Speed up searching the armap */
  45.   struct ar_cache *cache;
  46.   bfd *archive_head;            /* Only interesting in output routines */
  47.   carsym *symdefs;        /* the symdef entries */
  48.   symindex symdef_count;             /* how many there are */
  49.   char *extended_names;        /* clever intel extension */
  50.   /* when more compilers are standard C, this can be a time_t */
  51.   long  armap_timestamp;    /* Timestamp value written into armap.
  52.                    This is used for BSD archives to check
  53.                    that the timestamp is recent enough
  54.                    for the BSD linker to not complain,
  55.                    just before we finish writing an
  56.                    archive.  */
  57.   file_ptr armap_datepos;    /* Position within archive to seek to
  58.                    rewrite the date field.  */
  59.   PTR tdata;            /* Backend specific information.  */
  60. };
  61.  
  62. #define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
  63.  
  64. /* Goes in bfd's arelt_data slot */
  65. struct areltdata {
  66.   char * arch_header;                 /* it's actually a string */
  67.   unsigned int parsed_size;     /* octets of filesize not including ar_hdr */
  68.   char *filename;                 /* null-terminated */
  69. };
  70.  
  71. #define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
  72.  
  73. char *bfd_zmalloc PARAMS ((bfd_size_type size));
  74.  
  75. /* These routines allocate and free things on the BFD's obstack.  Note
  76.    that realloc can never occur in place.  */
  77.  
  78. PTR    bfd_alloc PARAMS ((bfd *abfd, size_t size));
  79. PTR    bfd_zalloc PARAMS ((bfd *abfd, size_t size));
  80. PTR    bfd_realloc PARAMS ((bfd *abfd, PTR orig, size_t size));
  81. void    bfd_alloc_grow PARAMS ((bfd *abfd, PTR thing, size_t size));
  82. PTR    bfd_alloc_finish PARAMS ((bfd *abfd));
  83. PTR    bfd_alloc_by_size_t PARAMS ((bfd *abfd, size_t wanted));
  84.  
  85. #define    bfd_release(x,y) (void) obstack_free(&(x->memory),y)
  86.  
  87. bfd *    _bfd_create_empty_archive_element_shell PARAMS ((bfd *obfd));
  88. bfd *    _bfd_look_for_bfd_in_cache PARAMS ((bfd *arch_bfd, file_ptr index));
  89. boolean _bfd_add_bfd_to_archive_cache PARAMS ((bfd *, file_ptr, bfd *));
  90. boolean    _bfd_generic_mkarchive PARAMS ((bfd *abfd));
  91. struct areltdata *_bfd_snarf_ar_hdr PARAMS ((bfd *abfd));
  92. const bfd_target *bfd_generic_archive_p PARAMS ((bfd *abfd));
  93. boolean    bfd_slurp_armap PARAMS ((bfd *abfd));
  94. boolean bfd_slurp_bsd_armap_f2 PARAMS ((bfd *abfd));
  95. #define bfd_slurp_bsd_armap bfd_slurp_armap
  96. #define bfd_slurp_coff_armap bfd_slurp_armap
  97. boolean    _bfd_slurp_extended_name_table PARAMS ((bfd *abfd));
  98. extern boolean _bfd_construct_extended_name_table
  99.   PARAMS ((bfd *, boolean, char **, bfd_size_type *));
  100. boolean    _bfd_write_archive_contents PARAMS ((bfd *abfd));
  101. bfd *_bfd_get_elt_at_filepos PARAMS ((bfd *archive, file_ptr filepos));
  102. bfd * _bfd_new_bfd PARAMS ((void));
  103.  
  104. #define DEFAULT_STRING_SPACE_SIZE 0x2000
  105. boolean    bfd_add_to_string_table PARAMS ((char **table, char *new_string,
  106.                      unsigned int *table_length,
  107.                      char **free_ptr));
  108.  
  109. boolean    bfd_false PARAMS ((bfd *ignore));
  110. boolean    bfd_true PARAMS ((bfd *ignore));
  111. PTR    bfd_nullvoidptr PARAMS ((bfd *ignore));
  112. int    bfd_0 PARAMS ((bfd *ignore));
  113. unsigned int    bfd_0u PARAMS ((bfd *ignore));
  114. long    bfd_0l PARAMS ((bfd *ignore));
  115. long    _bfd_n1 PARAMS ((bfd *ignore));
  116. void    bfd_void PARAMS ((bfd *ignore));
  117.  
  118. bfd *_bfd_new_bfd_contained_in PARAMS ((bfd *));
  119. const bfd_target *_bfd_dummy_target PARAMS ((bfd *abfd));
  120.  
  121. void    bfd_dont_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
  122.                     char *hdr));
  123. void    bfd_bsd_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
  124.                     char *hdr));
  125. void    bfd_gnu_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
  126.                     char *hdr));
  127.  
  128. boolean    bsd_write_armap PARAMS ((bfd *arch, unsigned int elength,
  129.                   struct orl *map, unsigned int orl_count, int stridx));
  130.  
  131. boolean    coff_write_armap PARAMS ((bfd *arch, unsigned int elength,
  132.                    struct orl *map, unsigned int orl_count, int stridx));
  133.  
  134. bfd *    bfd_generic_openr_next_archived_file PARAMS ((bfd *archive,
  135.                              bfd *last_file));
  136.  
  137. int    bfd_generic_stat_arch_elt PARAMS ((bfd *, struct stat *));
  138.  
  139.  
  140. /* Generic routines to use for BFD_JUMP_TABLE_GENERIC.  Use
  141.    BFD_JUMP_TABLE_GENERIC (_bfd_generic).  */
  142.  
  143. #define _bfd_generic_close_and_cleanup bfd_true
  144. #define _bfd_generic_bfd_free_cached_info bfd_true
  145. #define _bfd_generic_new_section_hook \
  146.   ((boolean (*) PARAMS ((bfd *, asection *))) bfd_true)
  147. extern boolean _bfd_generic_get_section_contents
  148.   PARAMS ((bfd *, asection *, PTR location, file_ptr offset,
  149.        bfd_size_type count));
  150.  
  151. /* Generic routines to use for BFD_JUMP_TABLE_COPY.  Use
  152.    BFD_JUMP_TABLE_COPY (_bfd_generic).  */
  153.  
  154. #define _bfd_generic_bfd_copy_private_bfd_data \
  155.   ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)
  156. #define _bfd_generic_bfd_copy_private_section_data \
  157.   ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_true)
  158.  
  159. /* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file
  160.    support.  Use BFD_JUMP_TABLE_CORE (_bfd_nocore).  */
  161.  
  162. extern char *_bfd_nocore_core_file_failing_command PARAMS ((bfd *));
  163. extern int _bfd_nocore_core_file_failing_signal PARAMS ((bfd *));
  164. extern boolean _bfd_nocore_core_file_matches_executable_p
  165.   PARAMS ((bfd *, bfd *));
  166.  
  167. /* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive
  168.    file support.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive).  */
  169.  
  170. #define _bfd_noarchive_slurp_armap bfd_false
  171. #define _bfd_noarchive_slurp_extended_name_table bfd_false
  172. #define _bfd_noarchive_construct_extended_name_table \
  173.   ((boolean (*) PARAMS ((bfd *, char **, bfd_size_type *, const char **))) \
  174.    bfd_false)
  175. #define _bfd_noarchive_truncate_arname \
  176.   ((void (*) PARAMS ((bfd *, const char *, char *))) bfd_void)
  177. #define _bfd_noarchive_write_armap \
  178.   ((boolean (*) \
  179.     PARAMS ((bfd *, unsigned int, struct orl *, unsigned int, int))) \
  180.    bfd_false)
  181. #define _bfd_noarchive_openr_next_archived_file \
  182.   ((bfd *(*) PARAMS ((bfd *, bfd *))) bfd_nullvoidptr)
  183. #define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt
  184. #define _bfd_noarchive_update_armap_timestamp bfd_false
  185.  
  186. /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style
  187.    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd).  */
  188.  
  189. #define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap
  190. #define _bfd_archive_bsd_slurp_extended_name_table \
  191.   _bfd_slurp_extended_name_table
  192. extern boolean _bfd_archive_bsd_construct_extended_name_table
  193.   PARAMS ((bfd *, char **, bfd_size_type *, const char **));
  194. #define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname
  195. #define _bfd_archive_bsd_write_armap bsd_write_armap
  196. #define _bfd_archive_bsd_openr_next_archived_file \
  197.   bfd_generic_openr_next_archived_file
  198. #define _bfd_archive_bsd_generic_stat_arch_elt \
  199.   bfd_generic_stat_arch_elt
  200. extern boolean _bfd_archive_bsd_update_armap_timestamp PARAMS ((bfd *));
  201.  
  202. /* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style
  203.    archives.  Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff).  */
  204.  
  205. #define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap
  206. #define _bfd_archive_coff_slurp_extended_name_table \
  207.   _bfd_slurp_extended_name_table
  208. extern boolean _bfd_archive_coff_construct_extended_name_table
  209.   PARAMS ((bfd *, char **, bfd_size_type *, const char **));
  210. #define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname
  211. #define _bfd_archive_coff_write_armap coff_write_armap
  212. #define _bfd_archive_coff_openr_next_archived_file \
  213.   bfd_generic_openr_next_archived_file
  214. #define _bfd_archive_coff_generic_stat_arch_elt \
  215.   bfd_generic_stat_arch_elt
  216. #define _bfd_archive_coff_update_armap_timestamp bfd_true
  217.  
  218. /* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol
  219.    support.  Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols).  */
  220.  
  221. #define _bfd_nosymbols_get_symtab_upper_bound _bfd_n1
  222. #define _bfd_nosymbols_get_symtab \
  223.   ((long (*) PARAMS ((bfd *, asymbol **))) _bfd_n1)
  224. #define _bfd_nosymbols_make_empty_symbol \
  225.   ((asymbol *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
  226. #define _bfd_nosymbols_print_symbol \
  227.   ((void (*) PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type))) bfd_void)
  228. #define _bfd_nosymbols_get_symbol_info \
  229.   ((void (*) PARAMS ((bfd *, asymbol *, symbol_info *))) bfd_void)
  230. #define _bfd_nosymbols_bfd_is_local_label \
  231.   ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false)
  232. #define _bfd_nosymbols_get_lineno \
  233.   ((alent *(*) PARAMS ((bfd *, asymbol *))) bfd_nullvoidptr)
  234. #define _bfd_nosymbols_find_nearest_line \
  235.   ((boolean (*) \
  236.     PARAMS ((bfd *, asection *, asymbol **, bfd_vma, const char **, \
  237.          const char **, unsigned int *))) \
  238.    bfd_false)
  239. #define _bfd_nosymbols_bfd_make_debug_symbol \
  240.   ((asymbol *(*) PARAMS ((bfd *, PTR, unsigned long))) bfd_nullvoidptr)
  241.  
  242. /* Routines to use for BFD_JUMP_TABLE_RELOCS when there is no reloc
  243.    support.  Use BFD_JUMP_TABLE_RELOCS (_bfd_norelocs).  */
  244.  
  245. #define _bfd_norelocs_get_reloc_upper_bound \
  246.   ((long (*) PARAMS ((bfd *, asection *))) _bfd_n1)
  247. #define _bfd_norelocs_canonicalize_reloc \
  248.   ((long (*) PARAMS ((bfd *, asection *, arelent **, asymbol **))) _bfd_n1)
  249. #define _bfd_norelocs_bfd_reloc_type_lookup \
  250.   ((const reloc_howto_type *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) \
  251.    bfd_nullvoidptr)
  252.  
  253. /* Routines to use for BFD_JUMP_TABLE_WRITE for targets which may not
  254.    be written.  Use BFD_JUMP_TABLE_WRITE (_bfd_nowrite).  */
  255.  
  256. #define _bfd_nowrite_set_arch_mach \
  257.   ((boolean (*) PARAMS ((bfd *, enum bfd_architecture, unsigned long))) \
  258.    bfd_false)
  259. #define _bfd_nowrite_set_section_contents \
  260.   ((boolean (*) PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type))) \
  261.    bfd_false)
  262.  
  263. /* Generic routines to use for BFD_JUMP_TABLE_WRITE.  Use
  264.    BFD_JUMP_TABLE_WRITE (_bfd_generic).  */
  265.  
  266. #define _bfd_generic_set_arch_mach bfd_default_set_arch_mach
  267. extern boolean _bfd_generic_set_section_contents
  268.   PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
  269.  
  270. /* Routines to use for BFD_JUMP_TABLE_LINK for targets which do not
  271.    support linking.  Use BFD_JUMP_TABLE_LINK (_bfd_nolink).  */
  272.  
  273. #define _bfd_nolink_sizeof_headers ((int (*) PARAMS ((bfd *, boolean))) bfd_0)
  274. #define _bfd_nolink_bfd_get_relocated_section_contents \
  275.   ((bfd_byte *(*) \
  276.     PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, \
  277.          bfd_byte *, boolean, asymbol **))) \
  278.    bfd_nullvoidptr)
  279. #define _bfd_nolink_bfd_relax_section \
  280.   ((boolean (*) \
  281.     PARAMS ((bfd *, asection *, struct bfd_link_info *, boolean *))) \
  282.    bfd_false)
  283. #define _bfd_nolink_bfd_link_hash_table_create \
  284.   ((struct bfd_link_hash_table *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
  285. #define _bfd_nolink_bfd_link_add_symbols \
  286.   ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
  287. #define _bfd_nolink_bfd_final_link \
  288.   ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
  289.  
  290. /* Routines to use for BFD_JUMP_TABLE_DYNAMIC for targets which do not
  291.    have dynamic symbols or relocs.  Use BFD_JUMP_TABLE_DYNAMIC
  292.    (_bfd_nodynamic).  */
  293.  
  294. #define _bfd_nodynamic_get_dynamic_symtab_upper_bound _bfd_n1
  295. #define _bfd_nodynamic_canonicalize_dynamic_symtab \
  296.   ((long (*) PARAMS ((bfd *, asymbol **))) _bfd_n1)
  297. #define _bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_n1
  298. #define _bfd_nodynamic_canonicalize_dynamic_reloc \
  299.   ((long (*) PARAMS ((bfd *, arelent **, asymbol **))) _bfd_n1)
  300.  
  301. /* Generic routine to determine of the given symbol is a local
  302.    label.  */
  303. extern boolean bfd_generic_is_local_label PARAMS ((bfd *, asymbol *));
  304.  
  305. /* A routine to create entries for a bfd_link_hash_table.  */
  306. extern struct bfd_hash_entry *_bfd_link_hash_newfunc
  307.   PARAMS ((struct bfd_hash_entry *entry,
  308.        struct bfd_hash_table *table,
  309.        const char *string));
  310.  
  311. /* Initialize a bfd_link_hash_table.  */
  312. extern boolean _bfd_link_hash_table_init
  313.   PARAMS ((struct bfd_link_hash_table *, bfd *,
  314.        struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
  315.                        struct bfd_hash_table *,
  316.                        const char *)));
  317.  
  318. /* Generic link hash table creation routine.  */
  319. extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
  320.   PARAMS ((bfd *));
  321.  
  322. /* Generic add symbol routine.  */
  323. extern boolean _bfd_generic_link_add_symbols
  324.   PARAMS ((bfd *, struct bfd_link_info *));
  325.  
  326. /* Generic add symbol routine.  This version is used by targets for
  327.    which the linker must collect constructors and destructors by name,
  328.    as the collect2 program does.  */
  329. extern boolean _bfd_generic_link_add_symbols_collect
  330.   PARAMS ((bfd *, struct bfd_link_info *));
  331.  
  332. /* Generic archive add symbol routine.  */
  333. extern boolean _bfd_generic_link_add_archive_symbols
  334.   PARAMS ((bfd *, struct bfd_link_info *,
  335.        boolean (*checkfn) (bfd *, struct bfd_link_info *, boolean *)));
  336.  
  337. /* Forward declaration to avoid prototype errors.  */
  338. typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
  339.  
  340. /* Generic routine to add a single symbol.  */
  341. extern boolean _bfd_generic_link_add_one_symbol
  342.   PARAMS ((struct bfd_link_info *, bfd *, const char *name, flagword,
  343.        asection *, bfd_vma, const char *, boolean copy,
  344.        boolean constructor, struct bfd_link_hash_entry **));
  345.  
  346. /* Generic link routine.  */
  347. extern boolean _bfd_generic_final_link
  348.   PARAMS ((bfd *, struct bfd_link_info *));
  349.  
  350. /* Generic reloc_link_order processing routine.  */
  351. extern boolean _bfd_generic_reloc_link_order
  352.   PARAMS ((bfd *, struct bfd_link_info *, asection *,
  353.        struct bfd_link_order *));
  354.  
  355. /* Default link order processing routine.  */
  356. extern boolean _bfd_default_link_order
  357.   PARAMS ((bfd *, struct bfd_link_info *, asection *,
  358.        struct bfd_link_order *));
  359.  
  360. /* Count the number of reloc entries in a link order list.  */
  361. extern unsigned int _bfd_count_link_order_relocs
  362.   PARAMS ((struct bfd_link_order *));
  363.  
  364. /* Final link relocation routine.  */
  365. extern bfd_reloc_status_type _bfd_final_link_relocate
  366.   PARAMS ((const reloc_howto_type *, bfd *, asection *, bfd_byte *,
  367.        bfd_vma address, bfd_vma value, bfd_vma addend));
  368.  
  369. /* Relocate a particular location by a howto and a value.  */
  370. extern bfd_reloc_status_type _bfd_relocate_contents
  371.   PARAMS ((const reloc_howto_type *, bfd *, bfd_vma, bfd_byte *));
  372.  
  373. /* Create a string table.  */
  374. extern struct bfd_strtab_hash *_bfd_stringtab_init PARAMS ((void));
  375.  
  376. /* Free a string table.  */
  377. extern void _bfd_stringtab_free PARAMS ((struct bfd_strtab_hash *));
  378.  
  379. /* Get the size of a string table.  */
  380. extern bfd_size_type _bfd_stringtab_size PARAMS ((struct bfd_strtab_hash *));
  381.  
  382. /* Add a string to a string table.  */
  383. extern bfd_size_type _bfd_stringtab_add
  384.   PARAMS ((struct bfd_strtab_hash *, const char *, boolean hash,
  385.        boolean copy));
  386.  
  387. /* Write out a string table.  */
  388. extern boolean _bfd_stringtab_emit PARAMS ((bfd *, struct bfd_strtab_hash *));
  389.  
  390. /* Macros to tell if bfds are read or write enabled.
  391.  
  392.    Note that bfds open for read may be scribbled into if the fd passed
  393.    to bfd_fdopenr is actually open both for read and write
  394.    simultaneously.  However an output bfd will never be open for
  395.    read.  Therefore sometimes you want to check bfd_read_p or
  396.    !bfd_read_p, and only sometimes bfd_write_p.
  397. */
  398.  
  399. #define    bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
  400. #define    bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
  401.  
  402. void    bfd_assert PARAMS ((char*,int));
  403.  
  404. #define BFD_ASSERT(x) \
  405. { if (!(x)) bfd_assert(__FILE__,__LINE__); }
  406.  
  407. #define BFD_FAIL() \
  408. { bfd_assert(__FILE__,__LINE__); }
  409.  
  410. FILE *    bfd_cache_lookup_worker PARAMS ((bfd *));
  411.  
  412. extern bfd *bfd_last_cache;
  413.     
  414. /* Now Steve, what's the story here? */
  415. #ifdef lint
  416. #define itos(x) "l"
  417. #define stoi(x) 1
  418. #else
  419. #define itos(x) ((char*)(x))
  420. #define stoi(x) ((int)(x))
  421. #endif
  422.  
  423. /* List of supported target vectors, and the default vector (if
  424.    bfd_default_vector[0] is NULL, there is no default).  */
  425. extern const bfd_target * const bfd_target_vector[];
  426. extern const bfd_target * const bfd_default_vector[];
  427.  
  428. /* And more follows */
  429.  
  430.